/* 侧边栏样式 */

.sidebar {
    position: relative;
}

.profile {
    /* position: fixed; */
    top: 100px;
    /* width: 100%; */
    width: 300px;
    margin-left: 25px;
    background-color: #fff;
    box-shadow: 0 0 10px #00000026;
    -webkit-box-shadow: 0 0 10px #00000026;
    /* z-index: -1; */
}

.wavatar {
    width: 100%;
    height: 100%;
}

.wavatar-s {
    width: 70px;
    z-index: 3;
    position: absolute;
    left: 20px;
    border-radius: 50%!important;
    top: -35px;
}

.profile .about {
    color: #545454;
    font-size: 1.5rem;
    text-align: center;
    z-index: 3;
    font-weight: bold;
}

.profile-content {
    position: relative;
}

.card-profile {
    position: relative;
    padding: 10px;
}


/* slant */

.avatar-slant {
    position: relative;
    overflow: hidden;
    /* height: 170px; */
    max-height: 300px;
}

.winds-slant {
    background-color: rgba(0, 0, 0, 0.5);
    height: 150px;
    width: 115%;
    /* overflow: hidden; */
    z-index: 0;
    position: absolute;
    transform: rotate(-10deg);
    /* top: 300px; */
    margin-top: -80px;
}

.social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* margin: 0 0 20px; */
}

.social-item {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #eee;
    font-size: 20px;
    border-radius: 50%!important;
    margin: 20px auto;
}

.social-item:hover {
    background: #000;
    color: #fff!important;
    -webkit-animation: jianyin 1s;
    animation: jianyin 1s;
}

.social-item a:hover {
    background: #000;
    color: #fff!important;
    -webkit-animation: jianyin 1s;
    animation: jianyin 1s;
    border-radius: 50%!important;
}

.social-item a {
    display: block;
    text-decoration: none;
    overflow: visible;
}

.winds-toc {
    max-height: 80vh;
    overflow-y: scroll;
    padding: 10px;
}

.wind-woc-index ul {
    list-style: none;
    padding: 5px 5px 5px 10px;
}

.wind-woc-index ul li {
    padding: 5px;
}

.wind-woc-index {
    list-style: none;
    padding-left: 10px;
}

.wind-toc-title {
    display: block;
    text-align: center;
}


/* winds-toc */

.winds-toc li a:hover {
    /* background: #eee; */
    color: #28a745;
    /* text-decoration: underline; */
    border-bottom: 1px solid;
}

@media (max-width:1000px) {
    .sidebar {
        display: none;
    }
}


/* tabs */

#tabs ul {
    margin: 0;
    padding: 0;
}

#tabs,
#tabs2,
#tabs3,
#tabs4,
#tabs5 {
    width: 100%;
    margin: 0 auto;
    /* margin-bottom: 40px; */
}

#tabs li,
#tabs2 li,
#tabs3 li,
#tabs4 li,
#tabs5 li {
    float: left;
    /* margin-right: 2px; */
    list-style: none;
}

#tabs li a,
#tabs2 li a,
#tabs3 li a,
#tabs4 li a,
#tabs5 li a {
    display: block;
    /* padding: 17px 30px; */
    background: #544f6b;
    text-decoration: none;
    color: #8478B3;
}

#tabs li a:hover,
#tabs2 li a:hover,
#tabs3 li a:hover,
#tabs4 li a:hover,
#tabs5 li a:hover {
    background: rgb(78, 74, 99);
}

#tabs_container {
    /* padding: 40px; */
    overflow: hidden;
    position: relative;
    background: white;
}

#tabs_container div {
    /* margin-right: 40px; */
}

.transition {
    transition: all .3s ease-in-out;
    transition-delay: .3s;
}

.make_transist {
    transition: all .3s ease-in-out;
}

.hidescale {
    transform: scale(0.9);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    filter: alpha(opacity=0);
    opacity: 0;
}

.showscale {
    transform: scale(1);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    transition-delay: .3s;
}

.hideleft {
    transform: translateX(-100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
}

.showleft {
    transform: translateX(0px);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    transition-delay: .3s;
}

.hidescaleup {
    transform: scale(1.1);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
}

.showscaleup {
    transform: scale(1);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    transition-delay: .3s;
}

.hideflip {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    transform: rotatey(-90deg) scale(1.1);
    transform-origin: 50% 50%;
}

.showflip {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    transition-delay: .3s;
    transform: rotatey(0deg) scale(1);
    transform-origin: 50% 50%;
}

.tabulous_active {
    background: white !important;
    color: #655c89 !important;
}

.tabulousclear {
    display: block;
    clear: both;
}